home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- cursor(-1)
- sound stop 3
- set the keyDownScript to "printPass"
- set the keyUpScript to "numsOnly"
- end
-
- on numsOnly
- if (the key = RETURN) or (the key = ENTER) or (the keyCode = 76) then
- dontPassEvent()
- end if
- if ((the key < "0") or (the key > "9")) and (the key <> ".") and (the key <> numToChar(8)) then
- dontPassEvent()
- end if
- if field "R" > 999 then
- put "99" into field "R"
- end if
- if field "R" <= 0 then
- put "0.25" into field "R"
- end if
- end
-